﻿.item-lis {
    overflow: hidden;
}

.item-box {
    background-color: #FFF;
    position: relative;
    float: left;
    width: 215px;
    height: 250px;
    margin-right: 20px;
    font-size: 12px;
    display:block;
}

    .item-box .item-imgs {
        display:block;
        width: 100%;
        height: 176px;
        position: relative;
        overflow: hidden;
    }
        .item-box .item-imgs .item-imgs-slide {
            width: 100%;
            height: 100%;
            position: relative;
        }
            .item-box .item-imgs .item-imgs-slide i {
                width: 215px;
                height: 100%;
                float: left;
                display: block;
               
                background-repeat: no-repeat;
                background-size: auto 100%;
                background-position: center;
            }
        .item-box .item-imgs:hover .item-imgs-slide.loaded {
            width: 400%;
            animation: itemslide 4s infinite;
        }

    .item-box .item-round {
        position: absolute;
        top: 4px;
        left: 0;
        font-size: 12px;
        height: 20px;
        line-height: 20px;
        color: #e52127;
        background-color: rgba(255,255,255,.4);
        padding-left: 5px;
        padding-right: 15px;
    }
        .item-box .item-round i {
            width: 20px;
            height: 20px;
            display: block;
            float: right;
            background-color: #fff;
            background-image: url(CourtCont.png);
            border-radius: 50%;
            background-size: 15px 15px;
            background-repeat: no-repeat;
            background-position: center;
            transform: scaleX(-1);
            position: absolute;
            right: -10px;
            top: 0;
        }

    .item-box .item-name {
       height:54px;
       line-height:54px;
       font-size:14px;
       text-align:center;
    }
    .item-box:hover .item-name {
        color: #e50000;
    }


    .item-box .item-price {
        text-align: center;
        color: #e50000;
        font-size: 18px;
    }


/*轮播图动画*/
@keyframes itemslide {
    0% { left: 0; }
    15% { left: -100%; }
    35% { left: -100%; }
    50% { left: -200%; }
    70% { left: -200%; }
    85% { left: -300%; }
    100% { left: -300%; }
}